home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / utility / maken103.zip / EXAMPLE1.BAT < prev    next >
DOS Batch File  |  1996-09-11  |  247b  |  14 lines

  1. @ECHO OFF
  2. ECHO This is an example program -- see the file MAKENAME.DOC for details
  3. ECHO Press Ctrl-C to quit
  4. PAUSE
  5. CLS
  6.  
  7. :AGAIN
  8. MAKENAME XYZ
  9. CALL SETNAME.BAT
  10. ECHO Variable XYZ is set to %XYZ%
  11. ECHO Press Ctrl-C to quit
  12. PAUSE
  13. GOTO AGAIN
  14.